home *** CD-ROM | disk | FTP | other *** search
/ Monster Media 1996 #15 / Monster Media Number 15 (Monster Media)(July 1996).ISO / games / phan217.zip / SAMPLE.BAT < prev    next >
DOS Batch File  |  1996-05-27  |  442b  |  25 lines

  1. REM : example .bat file for standlone PHANTOM OF THE CATACOMBS:
  2. @echo off
  3. cd\games\phan
  4. phan game 1
  5. cd\pb\node1
  6.  
  7. REM: you can pass variables as well:
  8. @echo off
  9. cd\games\phan
  10. phan game %1
  11. cd\pb\node%1
  12.  
  13. REM: if you use custom .CFG files ie: CONFIG1.CFG, CONFIG2.CFG do this:
  14. @echo off
  15. cd\games\phan
  16. phan game 1 custom
  17. cd\pb\node1
  18.  
  19.  
  20. REM: put this in your nightly maintenance .bat file
  21. @echo off
  22. cd\games\phan
  23. phan maint
  24.  
  25.